Outer Join Escape Sequences
ODBC and JDBC support the SQL92 left, right, and full outer join syntax. The escape sequence for outer joins is:
where
outer-joinis:where
table-referenceis a table name, andsearch-conditionis the join condition you want to use for the tables.Example:
SELECT Customers.CustID, Customers.Name, Orders.OrderID, Orders.Status FROM {oj Customers LEFT OUTER JOIN Orders ON Customers.CustID=Orders.CustID} WHERE Orders.Status='OPEN'Table A-11 lists the outer join escape sequences supported by SequeLink for each data store.